home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / shared.dir / 07430_AssetManager.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  627 b   |  31 lines

  1. property iDB
  2.  
  3. on birth me, aDBCast
  4.   mLoadDB(me, aDBCast)
  5.   return me
  6. end
  7.  
  8. on mLoadDB me, aDBCast
  9.   if not integerp(aDBCast) then
  10.     set aDBCast to the number of cast aDBCast
  11.   end if
  12.   set iDB to [:]
  13.   set vDB to the text of cast aDBCast
  14.   set vMax to the number of lines in vDB
  15.   set the itemDelimiter to ","
  16.   repeat with vI = 1 to vMax
  17.     set vLine to line vI of vDB
  18.     set vName to item 1 of vLine
  19.     set vNo to item 2 of vLine
  20.     addProp(iDB, vName, vNo)
  21.   end repeat
  22. end
  23.  
  24. on mGetAssetNo me, aName
  25.   set vPos to findPos(iDB, aName)
  26.   if voidp(vPos) then
  27.     return -1
  28.   end if
  29.   return integer(getAt(iDB, vPos))
  30. end
  31.